Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
FileCompression[zip].txt
Package: FileCompression[zip].rar [view]
Upload User: sbftbdw
Upload Date: 2022-01-12
Package Size: 1k
Code Size: 1k
Category:
Compress-Decompress algrithms
Development Platform:
Java
- /**
- * 把一个文件压缩成zip格式 入口格式: File src = new File("d:/temp/1.txt"); String des
- * ="d:/temp/www.zip";
- *
- * @param src
- * @param des
- */
- public void compress(File src, String des) {
- DataInputStream in = null;
- ZipOutputStream out = null;
- try {
- in = new DataInputStream(new FileInputStream(src));
- out = new ZipOutputStream(new FileOutputStream(des));
- out.putNextEntry(new ZipEntry(src.getName()));
- int n = 0;
- byte[] buff = new byte[1024 * 1024];
- while ((n = in.read(buff)) != -1) {
- out.write(buff, 0, n);
- }
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } finally {
- try {
- out.close();
- in.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }